TextCustomization

data class TextCustomization(@ColorRes() textColor: Int?, @FontRes() textFont: Int?, @StringRes() text: Int?) : LabelCustomization

Use this class to customize the style of the text in the Navigation Bar used across 3DS1 and 3DS2 challenge screens, as well as the actual text displayed as the title.

Parameters

textColor

Text colour resource reference.

textFont

Text font resource reference.

text

Text resource reference.

Constructors

TextCustomization
Link copied to clipboard
fun TextCustomization(@ColorRes() textColor: Int? = null, @FontRes() textFont: Int? = null, @StringRes() text: Int? = null)

Properties

text
Link copied to clipboard
var text: Int? = null
Text resource reference.
textColor
Link copied to clipboard
open override var textColor: Int? = null
Text colour resource reference.
textFont
Link copied to clipboard
open override var textFont: Int? = null
Text font resource reference.